projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
749d2ee
)
(invalid_character): Prepend `0' to octal
author
Kenichi Handa
<handa@m17n.org>
Thu, 8 Oct 1998 06:45:36 +0000
(06:45 +0000)
committer
Kenichi Handa
<handa@m17n.org>
Thu, 8 Oct 1998 06:45:36 +0000
(06:45 +0000)
representation. Give error sufficient args.
src/charset.c
patch
|
blob
|
history
diff --git
a/src/charset.c
b/src/charset.c
index 9cafe3ebcf811f51f6bd84d75d652235909221de..f25c6bb0b7511c9cc2726d2d643b8a77588a4a1b 100644
(file)
--- a/
src/charset.c
+++ b/
src/charset.c
@@
-115,7
+115,7
@@
void
invalid_character (c)
int c;
{
- error ("Invalid character:
%o, %d, 0x%x"
, c);
+ error ("Invalid character:
0%o, %d, 0x%x", c, c
, c);
}